more edits

Andrew Cantino 11 ans auparavant
Parent
Commettre
6827412d33
1 fichiers modifiés avec 9 ajouts et 9 suppressions
  1. 9 9
      README.md

+ 9 - 9
README.md

@@ -2,7 +2,7 @@
2 2
 
3 3
 ## What is Huginn?
4 4
 
5
-Huginn is a system for building agents that perform automated tasks for you online.  They can read the web, watch for events, and take actions on your behalf.  Huginn's Agents create and consume events, propogating events along a directed event flow graph.  Think of it as Yahoo! Pipes plus ITTT, on your own server.  You run Huginn on our own server, so you always know who has your data.  You do.
5
+Huginn is a system for building agents that perform automated tasks for you online.  They can read the web, watch for events, and take actions on your behalf.  Huginn's Agents create and consume events, propogating events along a directed event flow graph.  Think of it as Yahoo! Pipes plus ITTT, on your own server.  You always know who has your data.  You do.
6 6
 
7 7
 ![the origin of the name](doc/imgs/the-name.png)
8 8
 
@@ -33,30 +33,30 @@ And now, some example screenshots.  Below them are instructions to get you start
33 33
 
34 34
 ### Quick Start
35 35
 
36
-If you just want to play around, you can simply checkout this repository, then do the following steps:
36
+If you just want to play around, you can simply clone this repository, then perform the following steps:
37 37
 
38 38
 * Edit `config/secret_token.rb` and replace `REPLACE_ME_NOW!` with the output of `rake secret`.
39 39
 * Run `rake db:create`, `rake db:migrate`, and then `rake db:seed` to create a development MySQL database with some example seed data.  Run `rails s`, visit `http://localhost:3000`, and login with the username of `admin` and the password of `password`.
40 40
 * Make some extra Terminal windows and run `bundle exec rails runner bin/schedule.rb` and `bundle exec rails runner bin/twitter_stream.rb`
41 41
 * Setup some Agents!
42 42
 
43
-### Real Setup
43
+### Real Start
44 44
 
45
-Follow these instructions if you wish to deploy your own version of Huginn or to contribute back to the project.  GitHub doesn't make it easy to work with private forks of public repositories, so we recommend that you follow the following steps:
45
+Follow these instructions if you wish to deploy your own version of Huginn or contribute back to the project.  GitHub doesn't make it easy to work with private forks of public repositories, so we recommend that you follow the following steps:
46 46
 
47 47
 * Make a public fork of Huginn
48 48
 * Make a private, empty GitHub repository called `huginn-private`
49 49
 * Duplicate your public fork into your new private repository (via [GitHub's instructions](https://help.github.com/articles/duplicating-a-repository)):
50 50
 
51
-      git clone --bare git@github.com:you/huginn.git
52
-      cd huginn.git
53
-      git push --mirror git@github.com:you/huginn-private.git
54
-      cd .. && rm -rf huginn.git
51
+        git clone --bare git@github.com:you/huginn.git
52
+        cd huginn.git
53
+        git push --mirror git@github.com:you/huginn-private.git
54
+        cd .. && rm -rf huginn.git
55 55
 
56 56
 * Checkout your new private repository.
57 57
 * Add your Huginn public fork as a remote to your new private repository (`huginn-private`):
58 58
 
59
-      git remote add public git@github.com:you/huginn.git
59
+        git remote add public git@github.com:you/huginn.git
60 60
 
61 61
 * Run the steps from *Quick Start* above to configure your copy of Huginn.
62 62
 * When you want to contribute patches, do a remote push from your private repository to your public fork, then make a pull request to us.